home
***
CD-ROM
|
disk
|
FTP
|
other
***
search
/
Personal Computer World 2009 February
/
PCWFEB09.iso
/
Software
/
Linux
/
Kubuntu 8.10
/
kubuntu-8.10-desktop-i386.iso
/
casper
/
filesystem.squashfs
/
usr
/
share
/
recovery-mode
/
options
/
xfix
< prev
Wrap
Text File
|
2008-07-30
|
479b
|
22 lines
#!/bin/sh
. /usr/share/recovery-mode/l10n.sh
if [ ! -f /var/lib/dpkg/info/xserver-xorg.templates ]; then
# no xserver-xorg template available so nothing to reconfgiure
exit 1
fi
if [ "$1" = "test" ]; then
echo $(eval_gettext "Try to fix X server")
exit 0
fi
whiptail --infobox $(eval_gettext "The X server reconfiguration is now running. Your screen may flicker during hardware autodetection.") 8 60
sleep 3
dpkg-reconfigure -phigh xserver-xorg
sleep 3
exit 0